home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / HyperCuber Source / HyperCuber 2.0 Source.sit / HyperCuber 2.0 Source / CMouseControlsDialog.h < prev    next >
Text File  |  1994-04-05  |  640b  |  24 lines

  1. //|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2. //| This file contains the interface to the CMouseControlsDialog class.  The
  3. //| CMouseControlsDialog class implements the mouse controls dialog.
  4. //|________________________________________________________________________________
  5.  
  6.  
  7. #include <CDialog.h>
  8.  
  9. CLASS CArray;
  10. CLASS CMouseControlsArrayPane;
  11.  
  12. class CMouseControlsDialog : public CDialog
  13.     {
  14.  
  15.   public:
  16.  
  17.     void    IMouseControlsDialog(short WindowID, CDesktop *enclosure,
  18.                                 CDirector *supervisor, CArray *array,
  19.                                     CMouseControlsArrayPane *array_pane);
  20.     
  21.     void    MatchDialogToPrefs(void);
  22.     
  23.     };
  24.